6213f35e9f34188b24781a1c68aff03dfde94907,platform/boot/src/com/intellij/lang/properties/charset/Native2AsciiCharsetEncoder.java,Native2AsciiCharsetEncoder,encodeLoop,#CharBuffer#ByteBuffer#,39
Before Change
out.put((byte)'\\');
out.put((byte)'u');
out.put((byte)Character.forDigit(c >> 12, 16));
out.put((byte)Character.forDigit((c >> 8) & 0xf, 16));
out.put((byte)Character.forDigit((c >> 4) & 0xf, 16));
out.put((byte)Character.forDigit(c & 0xf, 16));
}
After Change
out.put((byte)'\\');
out.put((byte)'u');
out.put((byte)Character.toUpperCase(Character.forDigit(c >> 12, 16)));
out.put((byte)Character.toUpperCase(Character.forDigit((c >> 8) & 0xf, 16)));
out.put((byte)Character.toUpperCase(Character.forDigit((c >> 4) & 0xf, 16)));
out.put((byte)Character.toUpperCase(Character.forDigit(c & 0xf, 16)));
}